#8304: a004 沒有iostream ??


happyhuang (小香弟)

學校 : 國立彰化師範大學附屬高級工業職業學校
編號 : 19414
來源 : [118.170.158.16]
最後登入時間 :
2013-10-08 10:01:54
a004. 文文的求婚 | From: [111.252.90.83] | 發表日期 : 2013-10-08 11:04

程式碼如下 但他卻說 沒有 iostream.h 所以 狂CE 請問是哪裡有問題?
在Dev 裡都ok 說 

#include <iostream.h> int main() { int year,a,b,c; while((cin >> year)==1) { if((((year%4)==0) && ((year%100)!=0)) || ((year%400)==0)) { cout << "閏年\n" ; } else { cout << "平年\n" ; } } return 0; } 

  
/code_1592875.cpp:1:22: error: iostream.h: 沒有此一檔案或目錄 /code_1592875.cpp: In function ‘int main()’: /code_1592875.cpp:5: error: ‘cin’ was not declared in this scope /code_1592875.cpp:9: error: ‘cout’ was not declared in this scope /code_1592875.cpp:13: error: ‘cout’ was not declared in this scope
 
#8309: Re:a004 沒有iostream ??


rosynirvana (rosynirvana)

學校 : 不指定學校
編號 : 33880
來源 : [182.114.3.244]
最後登入時間 :
2017-07-24 00:02:04
a004. 文文的求婚 | From: [58.247.230.182] | 發表日期 : 2013-10-09 01:36

程式碼如下 但他卻說 沒有 iostream.h 所以 狂CE 請問是哪裡有問題?
在Dev 裡都ok 說 

#include int main() { int year,a,b,c; while((cin >> year)==1) { if((((year%4)==0) && ((year%100)!=0)) || ((year%400)==0)) { cout << "閏年\n" ; } else { cout << "平年\n" ; } } return 0; } 

  
/code_1592875.cpp:1:22: error: iostream.h: 沒有此一檔案或目錄 /code_1592875.cpp: In function ‘int main()’: /code_1592875.cpp:5: error: ‘cin’ was not declared in this scope /code_1592875.cpp:9: error: ‘cout’ was not declared in this scope /code_1592875.cpp:13: error: ‘cout’ was not declared in this scope

因为标准的写法是

#include <iostream> 

 
ZeroJudge Forum