2008年11月11日 星期二

不錯看的巧廣告




幕後花絮





還有漫畫的


2008年11月2日 星期日

操作介面設計模式

 

假如你不是一個受過訓練或自我學習的介面設計師,

如果你只是使用此 U I 工具包,

你依據它們應該的用法,

遵守各種設計守則,

或者模仿既有的應用,

你可能會建立出二流但還過得去的普通介面。

………………………………取自本書前言

Online Judge input and the output

C++

#include
using namespace std;

int main(void)
{
int a;
while(cin >> a)
cout << (char)a;
return 0;
}



Java

import java.util.Scanner;
public class Main
{
public static void main(String args[])
{
Scanner cin=new Scanner(System.in);
int a;
while(cin.hasNextInt()) {
a = cin.nextInt();
System.out.print((char)a);
}
}
}