fork(1) download
  1. /*
  2. //InputSample.java
  3.  
  4. package Lec07;
  5. import java.io.*;//InputStreamReader クラスが含まれる
  6. //このクラスはコンパイルエラーが発生します
  7. public class InputSample {
  8. public static void main(String[] args){
  9. //バイトストリームを文字ストリームに変換するため
  10. InputStreamReader isr = new InputStreamReader(System.in);
  11. System.out.print("Prease input a charactor: ");
  12. //標準入力からバイトデータを読み込み単一の文字を返す
  13. int c = isr.read();
  14. System.out.println("Your input charactor is : "+(char)c);
  15. }
  16. }
  17.  
  18. 問題1:InputSample.java にtry-catch 文を加筆しコンパイルエラーの起こらないプログラム
  19. InputSample01.java を作成せよ.
  20.  
  21. 問題2:ある文字列が標準入力されたとき,次のような変換を行うプログラムKadai02.java を作成せ
  22. よ.String クラスの,charAt メソッド,length メソッド,valueOf メソッドなどを使うとよい.
  23.  ’a’ ならば’x’,それ以外の文字ならば’o’ に置き換える.
  24.  空白は空白のままとする.
  25.  ”ab Adaf”という文字列であれば,”xo ooxo”に変換される.
  26.  
  27. */
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
ERROR:Could not find Main.java
spoj: The program compiled successfully, but main class was not found.
      Main class should contain method: public static void main (String[] args).
stdout
Standard output is empty