Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

public class Main {

    public static String appendPercentSymbol(int percent) {

        StringBuffer sb;

        sb = new StringBuffer();
        sb.append(percent);
        sb.append("%");

        return sb.toString();
    }
}