c語言怎麼從鍵盤輸入資料用程式怎麼編

2021-03-04 00:00:17 字數 1005 閱讀 2299

1樓:櫻桃車厘子

我用的是

抄vc6,一般

襲格式是:

#include

using namespace std;

int main()

在cin>>的後

面可以輸入資料

2樓:日出日落三十天

gets 或者scanf函式,你找找相關資料看看

怎麼用c語言寫乙個 程式。實現從鍵盤輸入字元並寫入乙個檔案。

3樓:匿名使用者

#include

#define n 50

void main()

}file *pfile;

pfile = fopen("outfile.txt", "wb");

fwrite(buf, 1, strlen(buf), pfile);

fclose(pfile);}

4樓:匿名使用者

1、抄c語言標準庫提供了一系列檔案操作函式。檔案操作函式一般以f+單詞的形式來命名(f是file的簡寫),其宣告位於stdio.h標頭檔案當中。

例如:fopen、fclose函式用於檔案開啟與關閉;fscanf、fgets函式用於檔案讀取;fprintf、fputs函式用於檔案寫入;ftell、fseek函式用於檔案操作位置的獲取與設定。一般的c語言教程都有檔案操作一章,可以找本教材進一步學習。

2、例程:

#include

char c;

int main()

c=getchar();//從鍵盤讀取乙個字元fputc(c,fp2);//向輸出檔案寫入乙個字元fclose(fp2);//關閉輸出檔案,相當於儲存return 0;}

5樓:匿名使用者

# include

# define size = 5

cha size;

int main (void)

怎麼用c語言寫程式。實現從鍵盤輸入字元並寫入檔案

include define n 50 void main file pfile pfile fopen outfile.txt wb fwrite buf,1,strlen buf pfile fclose pfile 1 抄c語言標準庫提供了一系列檔案操作函式。檔案操作函式一般以f 單詞的形式來...

C語言編寫一程式,從鍵盤輸入圓半徑r,求圓周長l和圓面積s。輸出時要有文字說明

include int main include define p 3.1415926 int main 法1 include using namespace std define pi 3.1415926 class circle void get void cal 計算圓的周長和半徑 借花獻佛,...

C語言編寫程式,要求從鍵盤輸入兩個整數,輸出他們的平方和。如

void main 擴充套件資料 bai 三個整數du輸出的zhi平方和 dao 內 include int main int a,b,c,d scanf d d d a,b,c scanf d n a scanf d n b scanf是輸入語句,bai不需要加 du n 然後zhi,c語言函式最...