1樓:小小詩不敢給她
#include
int main()
double a,b,sum=0;
printf("請輸入兩個數:");
scanf("%f%f",&a,&b);
sum=a+b;
printf("%f\n",sum);
return 0;
本題是較為基礎的,希望題主可以把錯誤貼出來,找出錯誤並加以改進。
c語言是一門通用計算機程式語言,廣泛應用於底層開發。c語言的設計目標是提供一種能以簡易的方式編譯、處理低階儲存器、產生少量的機器碼以及不需要任何執行環境支援便能執行的程式語言。
儘管c語言提供了許多低階處理的功能,但仍然保持著良好跨平臺的特性,以一個標準規格寫出的c語言程式可在許多電腦平臺上進行編譯,甚至包含一些嵌入式處理器(微控制器或稱mcu)以及超級電腦等作業平臺。
2樓:匿名使用者
1、用scanf函式讀入兩個數,然後直接用printf函式輸出兩數之和即可。
2、例程:
#include
int main()
3樓:wang非在心上
這個問題很簡單撒!!你有可能不是**的錯誤啦!!
main()
4樓:匿名使用者
int a,b,sum;
scanf("%d",&a);
scanf("%d",&b);
sum = a+b;
printf("%d\n",sum);
//lz要的是這個麼?
5樓:姜桃
6樓:匿名使用者
錯誤**是什麼呀,你可以通過錯誤**去改錯呀,這個比別人給你寫的好~
c語言簡單求和,編寫程式:輸入兩個數,求兩個數的和
7樓:中關村**
#includemain()
{float a,b,s;
printf("pleace input a,b:\n");
scanf("%f %f\n",&a,&b);
s=a+b;
printf("%f\n",s); //輸出baidua+b的和
zhi版權
8樓:宇
整數之和
實數之和
兩個數字之間打空格,最後按回車求和
9樓:邪蒙閒者
#include
int main(void)
10樓:禿頭日記阿
c語言如何求2數的和?
11樓:登青雲而直上
#include
using namespace std;
int main()
12樓:文大寬
輸入兩個整數,中間空格:
#include
main()
13樓:匿名使用者
#include
int main()
c語言編寫程式 輸入兩個整數,計算兩數之和
14樓:匿名使用者
#include
int main()
15樓:
女人編寫程式輸入兩個整數,計算兩數之間的和是八,加上10=20
16樓:天雨下凡
#include
int main(void)
17樓:
#include
main()
int ad(int a,int b)
//直接複製,執行即可,有不懂可以問我
18樓:匿名使用者
**如下:
#include
int main()
分析:我們先定義兩個整型變數,並且都賦值為0,然後用scanf語句輸入它們,再用printf語句輸出a+b的和即可。
結果圖:
19樓:
#include
main()
20樓:華若冰韻
#include
main( )
求大俠幫忙用c語言,從鍵盤輸入兩個整數,要求求和然後輸出和。
21樓:呵呵大順店
**如下:
using system;
using system.collections.generic;
namespace testproject);if (arr.length != 2)//嘗試轉化輸入的兩個字串是否為整數
if (!int.tryparse(arr[0], out a) || !int.tryparse(arr[1], out b))
sum = a + b;
console.writeline("結果: + = ", a, b, sum);
a = b = sum = 0;
}console.writeline("程式結束,按回車結束。");
console.readline();}}}
22樓:匿名使用者
上萬,為什麼不搜尋一
zhi下呢,還要花dao花錢提問。給你個專簡單的吧:屬#include "stdio.h"
void main()
輸入的時候,兩個數字之間加個空格。如果執行之後,視窗不能停下看結果,就在printf這一句的下面再加一句:getch(); 。
23樓:祥龍九霄
#include
#include
using namespace std;
int main()
24樓:我00善良
#include
int main()
25樓:匿名使用者
#include "stdio.h"
void main()
c語音的題:從鍵盤輸入兩個整數,要求求和然後輸出和。應該怎麼做?
26樓:有緣無份
**如下:
using system;
using system.collections.generic;
namespace testproject
class program
static void main(string args)
int a, b, sum = 0;
var readline = "";
console.writeline("程式功能:請輸入兩個數字計算其和(空格分割,回車結束),輸入exit結束:");
//將輸入的字串放至readline變數中,然後判斷是否為退出條件 exit
while ((readline = console.readline()).tolower() != "exit")
var arr = readline.split(new char );
if (arr.length != 2)
console.writeline("輸入不正確,請重新輸入!");
continue;
//嘗試轉化輸入的兩個字串是否為整數
if (!int.tryparse(arr[0], out a) || !int.tryparse(arr[1], out b))
console.writeline("輸入的字串不是整數,請重新輸入!");
continue;
sum = a + b;
console.writeline("結果: + = ", a, b, sum);
a = b = sum = 0;
console.writeline("程式結束,按回車結束。");
console.readline();
C語言中的隨機數的問題
rand 函式產生隨機數的原理 不清楚。但是他是一個 include 裡的函式。他的範圍是0 rand max.這個值不小於32767 這是ansi標準規定的 提到這個,順便幫樓主提一下。這個是偽隨機數。也就是一旦你執行過後,你每次得到的那組隨機數肯定是一樣的。這也就是偽所在。他的單次是隨機 單次不...
C語言中的問題,幾個C語言中的問題???
是二進位制位運算,意思是按位求與 假設i 5 二進位制就是101 i 1 就是 101 001 結果001 i 2 就是101 010 結果是000 i 4 就是 101 100 結果是 100 if i 4 的意思是 如果i的二進位制的第三位為1那判斷結果就是真,比如對於i 4,5,6,7 i 4...
c語言中變數的平方怎麼輸入,C語言中變數的平方怎麼輸入
天雲一號 在c 中,變數a的平方可以有2種方式進行輸入 1 直接本身相乘a a 2 用函式pow進行求變數a的平方,即pow a,2 注 函式pow的用法如下 函式格式 double pow double x,double y 功 能 計算x的y次冪 返 回 值 計算結果 當使用pow函式時,需要將...